curl --request GET \
--url https://api.onetsolutions.net/v1/auth/me \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"email": "jsmith@example.com",
"name": "<string>",
"is_staff": true,
"permissions": {},
"token_expires_at": "2023-11-07T05:31:56Z",
"picture": "<string>"
}Retrieve detailed information about the currently authenticated user, including profile data, organization memberships, and token expiration time. This endpoint is commonly used to validate authentication state and fetch user context.
curl --request GET \
--url https://api.onetsolutions.net/v1/auth/me \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"email": "jsmith@example.com",
"name": "<string>",
"is_staff": true,
"permissions": {},
"token_expires_at": "2023-11-07T05:31:56Z",
"picture": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://help.onetsolutions.net/llms.txt
Use this file to discover all available pages before exploring further.
Use Authorization: Bearer <token> header. Token can be a JWT token or an API key (format: sk-onetsolutions-...).